Extension point elasticSearchEmbeddedServer
In component org.nuxeo.elasticsearch.ElasticSearchComponent
Documentation
Extension point to setup an embedded Elasticsearch instance.
It creates a local node using the same JVM as Nuxeo.
This is a test configuration and must NOT be used in production, it is limited to one shard and no replica.
<elasticSearchLocal clusterName="MyCluster" httpEnabled="true"
indexStoreType="mmapfs" nodeName="MyNuxeo" pathData="/var/lib/nuxeo/elasticsearch/"/>
Please refer to the Elasticsearch node configuration
clusterName is the cluster.name
nodeName is the node.name, default to nuxeoNode
pathData is the path.data
indexStoreType is the index.store_type
httpEnabled is the node.enable_http
Contribution Descriptors
- Class: org.nuxeo.elasticsearch.config.ElasticSearchEmbeddedServerConfig
Existing Contributions
Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.
-
<extension point="elasticSearchEmbeddedServer" target="org.nuxeo.elasticsearch.ElasticSearchComponent"> <elasticSearchEmbeddedServer clusterName="nuxeoCluster" httpEnabled="true" networkHost="127.0.0.1" nodeName="nuxeoNode" pathData="/var/lib/nuxeo/elasticsearch" pathLogs="/var/log/nuxeo/elasticsearch"/> </extension>